home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / tools / mdem4c.exe / START.BAT < prev    next >
Encoding:
DOS Batch File  |  1992-06-12  |  1.3 KB  |  34 lines

  1. ECHO OFF
  2. REM MD_LITE.EXE is a stripped down version of MSHOW.EXE in the
  3. REM interest of minimizing the size of the MakeDemo runtime. It's
  4. REM sole function is to show a series of screens (i.e. full screens:
  5. REM no overlays.) There is no provision for Help at the touch of the
  6. REM F1 key. Seven and only seven key strokes are recognized:
  7. REM
  8. REM     PgUp or
  9. REM       Up Arrow Key      Presents previous screen
  10. REM
  11. REM     PgDn or
  12. REM       Down Arrow Key    Presents next screen
  13. REM
  14. REM     F5                  Toggles between monochrome and color
  15. REM
  16. REM     Return
  17. REM       or Enter          Presents next screen, if it exists, or
  18. REM                           exits with DOS ERRORLEVEL = 0
  19. REM
  20. REM     Esc                 Exits presentation with DOS ERRORLEVEL = 1
  21. REM
  22. REM As with MSHOW.EXE, a presentation can be appended to the end of
  23. REM MD_LITE.EXE to produce a single .EXE executible using
  24. REM WWP_MAKE.EXE. However, serializing copies will not work.
  25. REM
  26. REM MD_LITE is useful for making a front end for other software
  27. REM where a few expository screens would help get the novice users
  28. REM off to a good start. For example, we're going to put up a few
  29. REM screens from such a preliminary file before starting MakeDemo.
  30. MLITE MESSAGE.1ST
  31. IF ERRORLEVEL 1 GOTO END
  32. MDEMO
  33. :END
  34.